From: Matthias Clasen Date: Mon, 26 Oct 2015 11:22:28 +0000 (-0400) Subject: shortcuts: Cosmetic change X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~39^2~5145 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6efbf329c3b4ef2754bc7de1afbac1af9276d175;p=gtk%2B3.0.git shortcuts: Cosmetic change The .flat style class is controlled by the relief property, so just use that instead of manually setting style classes. --- diff --git a/gtk/gtkshortcutswindow.c b/gtk/gtkshortcutswindow.c index 5e274ec1b6..5e1cc3e321 100644 --- a/gtk/gtkshortcutswindow.c +++ b/gtk/gtkshortcutswindow.c @@ -26,6 +26,7 @@ #include "gtkshortcutsshortcut.h" #include "gtksearchbar.h" #include "gtksearchentry.h" +#include "gtkwidgetprivate.h" #include "gtkprivate.h" #include "gtkintl.h" @@ -753,8 +754,8 @@ gtk_shortcuts_window_init (GtkShortcutsWindow *self) priv->menu_button = g_object_new (GTK_TYPE_MENU_BUTTON, "focus-on-click", FALSE, "visible", TRUE, + "relief", GTK_RELIEF_NONE, NULL); - gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (priv->menu_button)), "flat"); gtk_stack_add_named (priv->title_stack, GTK_WIDGET (priv->menu_button), "sections"); menu_box = g_object_new (GTK_TYPE_BOX,